Screen:Hide()
Hides the Screen dialog box displayed by Screen:Show().
Use this function if you intend to let the users view nothing.
function main () { Screen:Show() Screen:Hide() //hide it back Konsol:Delay(1000) //added a delay to see that theres no Screen dialog box Konsol:Message("This message came out 1 second after hiding the Screen","NOTE") }